home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 4 / FM Towns Free Software Collection 4 - Disc 1.iso / data / moz25 / src25_4.lzh / MAKEFILE next >
Text File  |  1991-07-10  |  1KB  |  62 lines

  1. # Makefile 
  2. #       for Mozart Sinfonie Nr.25 g-moll 4st.
  3. TARGET=moz25_4.eup
  4. SRC=moz25_4.mml moz25_4.h moz25_4a.mml \
  5.     moz25_4b.mml moz25_4c.mml moz25_4d.mml moz25_4e.mml
  6.  
  7. DEL=rm -f
  8. #DEL=del
  9.  
  10. .SUFFIXES: .mml .eup
  11.  
  12. .mml.eup:
  13.     386 he386 $<
  14.  
  15. all: $(TARGET)
  16.     386 heplay $(TARGET)
  17.     l400c
  18.  
  19. eup: $(TARGET)
  20.  
  21. $(TARGET): $(SRC) 
  22.  
  23. clean: 
  24.     $(DEL) *.eup 
  25.  
  26. pac: moz25_4.exe
  27.  
  28. moz25_4.exe: moz25_4.lzh
  29.     lha s moz25_4.lzh
  30.     $(DEL) moz25_4.lzh
  31.  
  32. moz25_4.lzh: $(TARGET) moz25_4.doc src25_4.lzh moz25.bat
  33.     $(DEL) moz25_4.lzh 
  34.     lha a moz25_4.lzh $(TARGET) moz25_4.doc moz25.bat src25_4.lzh
  35.     
  36. src25_4.lzh: $(SRC) makefile
  37.     $(DEL) src25_4.lzh
  38.     lha a src25_4.lzh $(SRC) makefile
  39.  
  40. # for DEBUG 
  41. parta: moz25_4a.eup moz25_4.h
  42.     386 heplay moz25_4a.eup
  43.     l400c
  44.  
  45. partb: moz25_4b.eup moz25_4.h
  46.     386 heplay moz25_4b.eup
  47.     l400c
  48.  
  49. partc: moz25_4c.eup moz25_4.h
  50.     386 heplay moz25_4c.eup
  51.     l400c
  52.  
  53. partd: moz25_4d.eup moz25_4.h
  54.     386 heplay moz25_4d.eup
  55.     l400c
  56.  
  57. parte: moz25_4e.eup moz25_4.h
  58.     386 heplay moz25_4e.eup
  59.     l400c
  60.  
  61.